home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kit PC World De Ampliacion De Windows 95
/
Kit PC World de ampliacion de Windows 95.iso
/
lotus
/
lotus025.dsk
/
COLSTYLE.LSS
< prev
next >
Wrap
Text File
|
1995-07-31
|
594b
|
18 lines
' styles are stored in a collection
' the collection is accessible through the foundry at the division level
Dim MyStyles As ParagraphStyleCollection
Set MyStyles = .Division.Foundry.ParagraphStyles
NumberStyles = MyStyles.Count
Forall Style In MyStyles
Print "Name : "Style.Name
Print "Description: "Style.Description
Print "Font - Font Name "Style.Font.ActualName
Print "Font - Size " Style.Font.Size
Print "Font - IsBold "Style.Font.Bold
Print "Font - Is TrueType "Style.Font.FontMetrics.IsTrueType
Print " --------------------------"
End Forall